@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8c8dc, #fdf6f0, #c8a27e);

    display: flex;
    justify-content: center;
    align-items: center;

    padding-top: 80px;
}

/* ===================================== */
/* INDEX PAGE ONLY STYLING */
/* ===================================== */

.home-page {
    background: linear-gradient(-45deg, #c8a27e, #f8c8dc, #fdf6f0, #b88a64);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}

/* Center content properly (card styling)
.home-page nav {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    padding: 50px 70px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    animation: fadeUp 1s ease;
} */

/* removing card cuz of stupid somee */
.home-page nav {
    text-align: center;
    padding: 60px 20px;
    animation: fadeUp 1s ease;
}


/* Main heading */
.home-page nav h1 {
    font-size: 42px;
    color: rgb(154, 109, 111);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

/* Menu list */
.home-page nav ul {
    list-style: none;
    padding: 0;
}

/* Menu items */
.home-page nav ul li {
    margin: 18px 0;
}

/* Links */
.home-page nav ul li a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: rgb(181, 103, 137);
    padding: 8px 12px;
    position: relative;
    transition: all 0.3s ease;
}

/* Pink underline animation */
.home-page nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #c16f91;
    transition: width 0.3s ease;
}

.home-page nav ul li a:hover::after {
    width: 100%;
}

/* Hover glow */
.home-page nav ul li a:hover {
    transform: scale(1.08);
    text-shadow: 0 0 12px rgba(255,255,255,0.7);
    color: #d3c1c8;
}

/* Background animation */
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* PAGE WRAPPER */
.page-container {
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: auto;
}

/* PAGE TITLE */
.page-title {
    font-size: 38px;
    color: #8b5e3c;
    margin-bottom: 30px;
    animation: fadeDown 0.8s ease;
}

/* FORM */
form {
    background: white;
    width: 380px;
    margin: 0 auto;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    animation: fadeUp 0.8s ease;
}

/* LABEL */
label {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    font-weight: 600;
    color: #a05278;
}

/* INPUTS */
input, textarea, select {
    width: 100%;
    padding: 10px;
    margin-bottom: 18px;
    border: 2px solid #f8c8dc;
    border-radius: 12px;
    transition: 0.3s ease;
}

/* FOCUS EFFECT */
input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #c8a27e;
    box-shadow: 0 0 10px rgba(248, 200, 220, 0.6);
}

/* BUTTON */
input[type="submit"], button {
    width: 100%;
    padding: 12px;
    border-radius: 25px;
    border: none;
    font-weight: 600;
    background: linear-gradient(45deg, #f8c8dc, #c8a27e);
    color: white;
    cursor: pointer;
    transition: 0.3s ease;
}

input[type="submit"]:hover, button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(200,162,126,0.4);
}

/* BACK BUTTON */
.back-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 20px;
    border-radius: 25px;
    background: transparent;
    border: 2px solid #978e88;
    color: #8b3c5c;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.back-btn:hover {
    background: #cd95b9;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
